<ul>
		<li class="lfield">
			<div><input type="text" name="user" value="" onfocus="login_focus(this);" onblur="login_blur(this);" /></div>
		</li>
		<li class="lfield">
			<div>
				<input id="p1" type="text" name="top_password" value="" onfocus="login_focus(this);" onblur="login_blur(this);" />
				<input id="p2" style="display: none;" type="password" name="password" value="" onfocus="login_focus(this);" onblur="login_blur(this);" />
			</div>
			<script type='text/javascript'>
				function login_focus(elm){
				    if(elm.value=='' || elm.value==''){
					if(elm.value==''){
					    document.getElementById('p1').style.display='none';
					    document.getElementById('p2').style.display='';
					    document.getElementById('p2').focus();
					}
					elm.value = '';
				    }
				}
				function login_blur(elm){
				    if(elm.value=='') {
					if(elm.type=='password') {
					    document.getElementById('p1').style.display='';
					    document.getElementById('p2').style.display='none';
					    document.getElementById('p1').value = '';
					    document.getElementById('p2').value = '';
					} else elm.value = '';
				    } else if(elm.type=='password') document.getElementById('p1').value = document.getElementById('p2').value;
				}
			</script>
		</li>
		<li class="submit">
			<input name="sfsbm" type="hidden" id="login" value="submit" />
			<input class="btn"  onmouseover="this.className='btnhover'" onmouseout="this.className='btn'" name="image" value="" type="image" src="/images/spacer.gif" />
			<div><a href="$REGISTER_LINK$" title=""></a></div>
			<div><a href="$REMINDER_LINK$" title=" ?"> ?</a></div>
			<div class="clr"></div>
		</li>
	</ul>